django {% tag %} problem

Posted by Sevenearths on Stack Overflow See other posts from Stack Overflow or by Sevenearths
Published on 2011-01-05T16:43:10Z Indexed on 2011/01/06 1:54 UTC
Read the original article Hit count: 682

I don't know if its me but {% tag ??? %} has bee behaving a bit sporadically round me (django ver 1.2.3). I have the following main.html file:

<html>
{% include 'main/main_css.html' %}
<body>
test! <a href="{% url login.views.logout_view %}">logout</a>
test! <a href="{% url client.views.client_search_last_name_view %}">logout</a>
</body>
</html>

with the urls.py being:

from django.conf.urls.defaults import *
import settings
from login.views import *
from mainapp.views import *
from client.views import *

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Example:
    # (r'^weclaim/', include('weclaim.foo.urls')),
    (r'^login/$', 'login.views.login_view'),
    (r'^logout/$', 'login.views.logout_view'),
    (r'^$', 'mainapp.views.main_view'),

    (r'^client/search/last_name/(A-Za-z)/$', 'client.views.client_search_last_name_view'),
    #(r'^client/search/post_code/(A-Za-z)/$', 'client.views.client_search_last_name_view'),

    # Uncomment the next line to enable the admin:
    (r'^admin/', include(admin.site.urls)),
    (r'^static/(?P<path>.*)$', 'django.views.static.serve',{'document_root': settings.MEDIA_ROOT}),
)

and the views.py for login being:

from django.shortcuts import render_to_response, redirect
from django.template import RequestContext
from django.contrib import auth
import mainapp.views

def login_view(request):
    if request.method == 'POST':
        uname = request.POST.get('username', '')
        psword = request.POST.get('password', '')
        user = auth.authenticate(username=uname, password=psword)
        # if the user logs in and is active
        if user is not None and user.is_active:
            auth.login(request, user)
            return redirect(mainapp.views.main_view)
        else:
            return render_to_response('loginpage.html', {'login_failed': '1',}, context_instance=RequestContext(request))
    else:
        return render_to_response('loginpage.html', {'dave': '1',}, context_instance=RequestContext(request))

def logout_view(request):
    auth.logout(request)
    return render_to_response('loginpage.html', {'logged_out': '1',}, context_instance=RequestContext(request))

and the views.py for clients being:

from django.shortcuts import render_to_response, redirect
from django.template import RequestContext
import login.views

def client_search_last_name_view(request):
    if request.user.is_authenticated():
        return render_to_response('client/client_search_last_name.html', {}, context_instance=RequestContext(request))
    else:
        return redirect(login.views.login_view)

Yet when I login it django raises an 'NoReverseMatch' for {% url client.views.client_search_last_name_view %} but not for {% url login.views.logout_view %}

Now why would this be?

© Stack Overflow or respective owner

Related posts about django

Related posts about django-views